SetStandardNameInteger Subroutine

private subroutine SetStandardNameInteger(name, layer)

set the standard name of a integer grid

Arguments

Type IntentOptional Attributes Name
character(len=*), intent(in) :: name
type(grid_integer), intent(inout) :: layer

Source Code

SUBROUTINE SetStandardNameInteger &
!
(name, layer)

IMPLICIT NONE

!Arguments with intent(in):
CHARACTER (LEN = *), INTENT(IN) :: name

!Arguments with intent(out):
TYPE(grid_integer), INTENT(INOUT) :: layer

!------------end of declaration------------------------------------------------

layer % standard_name = name

END SUBROUTINE SetStandardNameInteger